目录



使用Font Awesome作为菜单Icons图标

1.Wordpress插件支持

下载,https://wordpress.org/plugins/font-awesome-4-menus

使用

示例:

2.无插件直接引入使用

下载,原始官网:http://fontawesome.io ;极风游科技支持:http://fontawesome.dashgame.com

引入

复制整个font-awesome文件夹到主题中,在<head>中引用font-awesome.min.css:

<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">

使用

<a href="#" class="fa fa-trash-o fa-1g"></a>

其中:

完整示范

<!DOCTYPE html>
<html>
<head>
	<title>font icons test</title>
    <meta charset="ut-8" />
	<link rel="stylesheet" type="text/css" href="font-awesome-4.0.3/css/font-awesome.css" />
    <style type="text/css" >
        .danger{
            display: inline-block;
            width: 80px;
            height: 30px;
            text-align: center;
            background: brown;
            border-radius: 5px;
            font-size: 14px;
            line-height: 30px;
            text-decoration: none;
            color: white;
        }
    </style>
</head>
<body>
    <!--用法一-->
    <a class="danger" href="#"><i class="fa fa-trash-o fa-lg"></i>Delete</a>
    <!--用法二-->
    <i class="fa fa-trash-o fa-2x"></i> Delete
    <i class="fa fa-trash-o fa-3x"></i> Delete
    <i class="fa fa-trash-o fa-4x"></i> Delete
    <!--用法三-->
    <a href="#" class="fa fa-trash-o fa-5x"></a>
</body>
</html>
还可以使用 fa-border、 pull-right、pull-left 等语句轻易构造出引用的特殊效果,详情尽在:http://fontawesome.dashgame.com

首篇前一篇后一篇末篇